1   /************************************************************
2   *                     Copyright                            *
3   * Portions of this software are Copyright (c) 1993 - 2002, *
4   * Chad Z. Hower (Kudzu) and the Indy Pit Crew              *
5   *  - http://www.nevrona.com/Indy/                          *
6   ************************************************************/
7   package org.indy;
8   
9   /***
10   *  A listener interface for events on {@link IdCommandHandler} objects
11   *
12   *@author    OTG
13   *@version   0.1
14   *
15   */
16  public interface CommandHandlerListener extends java.util.EventListener {
17    /***
18     * Triggered by the observed {@link IdCommandHandler} instance
19     * when a command has been sucessfuly parsed into an {@link IdCommand} object.
20     *
21     * @param command The resulting IdCommand.
22     * @throws IdException if an exception is encountered whilst processing.
23     */
24    void onCommand(CommandEvent command) throws IndyException;
25  }
This page was automatically generated by Maven